home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / mathstud.zip / HILB.M < prev    next >
Text File  |  1992-09-10  |  249b  |  10 lines

  1. function [x]=hilb(n)
  2. %hilb create Hilbert matrix (a badly conditioned matrix)
  3.  
  4. %       S.Halevy 7/31/92
  5. %       Copyright (c) 1992 by the MathWizards
  6.  
  7. x=1:n;               % index row
  8. x=x(ones(n,1),:);    % smear rows
  9. x=1 ./ (x + x.' - 1);
  10.